- run slnova create-release-package.bat
- copy the resulting folder's contents into slnova_static_files (it will overwrite most files, but some extra ones will not be overwritten).
- djangoweblogo.js: 255-ish (in javascript folder) - take out AJAX call 

	$.ajax({
		type : "GET",
		url : full_url,
		dataType : "jsonp",
		crossDomain : true
	});
	
and replace it with 
	// dummy call; normally AJAX calls this to load the project
	get(JSON.stringify(project), "", 0, 0);
	
- open the HTML template file, locate the project string section (marked with ******************), and paste the new project string there.
- save as a new HTML file (so the template doesn't get overwritten).